home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exects.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  692b  |  21 lines

  1. /*****************************************************************************
  2.  
  3.     ExeCtS()
  4.  
  5.     This function executes a ^S (control-S or caret-S) command.  This
  6. is equivilent to the negative of the last referenced string (last insert,
  7. string found, or string inserted with "G" command).
  8.  
  9. *****************************************************************************/
  10.  
  11. #include "zport.h"        /* define portability identifiers */
  12. #include "tecoc.h"        /* define general identifiers */
  13. #include "defext.h"        /* define external global variables */
  14.  
  15. DEFAULT ExeCtS()        /* execute a ^S (control-S) command */
  16. {
  17.     DBGFEN(1,"ExeCtS",NULL);
  18.     DBGFEX(1,DbgFNm,"PushEx(RefLen)");
  19.     return PushEx(RefLen, OPERAND);
  20. }
  21.